home *** CD-ROM | disk | FTP | other *** search
/ Aminet 19 / Aminet 19 (1997)(GTI - Schatztruhe)[!][Jun 1997].iso / Aminet / comm / net / ARemote1_00B.lha / ARemote / source / ARemote_temp_aux.h next >
C/C++ Source or Header  |  1997-04-27  |  1KB  |  26 lines

  1. #ifndef AREMOTE_TEMP_AUX_H
  2. #define AREMOTE_TEMP_AUX_H
  3.  
  4. #include <clib/commodities_protos.h>
  5. #include <intuition/intuition.h>
  6. #include <libraries/gadtools.h>
  7. #include "ARemote.h"
  8.  
  9. #define FLAG_CLOSE_WINDOW  0x0001 /* Close the GUI window */
  10. #define FLAG_CONNECT       0x0002 /* Attempt to initiate a session */
  11. #define FLAG_DISCONNECT    0x0004 /* Close the current session */
  12. #define FLAG_QUIT          0x0008 /* Quit bye bye */
  13. #define FLAG_ENABLE        0x0010 /* Enable the commodity */
  14. #define FLAG_DISABLE       0x0020 /* Disable the commodity */
  15. #define FLAG_SAVE_SETTINGS 0x0040 /* Save current settings */
  16. #define FLAG_ABOUT         0x0080 /* Show the about box */
  17. #define FLAG_CHANGE_ACCEPT 0x0100 /* If we have a host QSession pending, re-make it */
  18. #define FLAG_UPDATE_STATE  0x0200 /* Re-read GUI settings into internal vars */
  19. #define FLAG_CHANGE_TOGGLE 0x0400 /* Re-setup the toggle hotkey */
  20. #define FLAG_CHANGE_POPUP  0x0800 /* Re-setup the toggle hotkey */
  21. #define FLAG_UPDATE_GUI    0x1000 /* Update the GUI from the internal state */
  22.  
  23. extern ULONG winRequests;
  24. extern BOOL BEnabled;
  25.  
  26. #endif